home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club 1999 May / Software of the Month - Ultimate Collection Shareware 261.iso / mac / Business / YellowEdit / Yellow Extension Toolkit / WASTE Headers / LongCoords.h next >
Encoding:
C/C++ Source or Header  |  1998-01-06  |  424 b   |  34 lines  |  [TEXT/CWIE]

  1. /*
  2.  *    LongCoords.h
  3.  *
  4.  *    C/C++ interface to the WASTE text engine:
  5.  *    Long Coordinates
  6.  *
  7.  *    version 1.3
  8.  *
  9.  *    Copyright (c) 1993-1997 Marco Piovanelli
  10.  *    All Rights Reserved
  11.  * 
  12.  */
  13.  
  14. #ifndef __LONGCOORDINATES__ 
  15. #ifndef _LongCoords_
  16. #define _LongCoords_
  17.  
  18. typedef struct LongPt
  19. {
  20.     SInt32 v;
  21.     SInt32 h;
  22. } LongPt;
  23.  
  24. typedef struct LongRect
  25. {
  26.     SInt32 top;
  27.     SInt32 left;
  28.     SInt32 bottom;
  29.     SInt32 right;
  30. } LongRect;
  31.  
  32. #endif
  33. #endif
  34.